9f5f8c534e6409b1cbb7662f918f36292d05bde5,CommandLineClient/src/main/java/com/dslplatform/compiler/client/Utils.java,Utils,downloadAndUnpack,#Context#String#File#,18

Before Change


	public static void downloadAndUnpack(final Context context, final String file, final File path) throws IOException {
		final URL server = new URL(REMOTE_URL + file + ".zip");
		context.show("Downloading " + file + ".zip from DSL Platform...");
		unpackZip(context, path, server);
	}

	public static String read(final InputStream stream) throws IOException {

After Change


	public static long downloadAndUnpack(final Context context, final String file, final File path) throws IOException {
		final URL server = new URL(REMOTE_URL + file + ".zip");
		context.show("Downloading " + file + ".zip from DSL Platform...");
		return unpackZip(context, path, server);
	}

	public static Either<Long> lastModified(final Context context, final String file) {